home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d21 / dvglue10.arc / TVTFREE.C < prev    next >
C/C++ Source or Header  |  1988-08-13  |  993b  |  27 lines

  1. /*================================================*/
  2. /* TVTFREE.C                                      */
  3. /*   Keyboard object management functions         */
  4. /*                                                */
  5. /* (c) Copyright 1988 Ralf Brown                  */
  6. /*     All Rights Reserved                        */
  7. /* May be freely copied for noncommercial use,    */
  8. /* provided that this copyright notice remains    */
  9. /* intact and any changes are indicated in the    */
  10. /* comment blocks preceding functions             */
  11. /*================================================*/
  12.  
  13. #include "tvapi.h"
  14.  
  15. /*================================================*/
  16. /* TVfreetask  free a task object                 */
  17. /*   Ralf Brown 4/3/88                            */
  18. /*================================================*/
  19.  
  20. void pascal TVtask_free(OBJECT task)
  21. {
  22.    if (task == NIL || TVisobj(task))
  23.       TVsendmsg0(FREE_MSG, task?TOS:ME, task) ;
  24. }
  25.  
  26. /* End of TVTFREE.C */
  27.